描述 给定一个二叉树和一个值sum,请找出所有的根节点到叶子节点的节点值之和等于sum 的路径, 例如: 给出如下的二叉树,sum=22 Java import java.util.*; /* * public class TreeNode { * int val = 0; * TreeNode l ...
分类:
编程语言 时间:
2021-07-19 16:52:19
阅读次数:
0
cat CentOS-Base.repo # CentOS-Base.repo # # The mirror system uses the connecting IP address of the client and the # update status of each mirror to p ...
分类:
其他好文 时间:
2021-07-19 16:46:42
阅读次数:
0
依赖安装 # 在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。 yum install curl openssh-server openssh-clients postfix cronie - ...
分类:
其他好文 时间:
2021-07-19 16:46:25
阅读次数:
0
目前为止的问题的总结 new Button(); 与 Button button = new Button(); 有什么区别 如下的监听事件,frame.addWindowListener(new WindowAdapter()) 中的 new WindowAdapter()具体是什么意思,有什么特 ...
分类:
其他好文 时间:
2021-07-19 16:43:28
阅读次数:
0
yum -y install wget telnet net-tools lrzsz vim zip unzip 修改主机名 将master节点主机名修改为k8s-master01 node节点为k8s-node01 以这种命名规则命名即可 关闭防火墙 systemctl stop firewall ...
分类:
其他好文 时间:
2021-07-16 17:44:33
阅读次数:
0
CentOS7查看开放端口命令及开放端口号 查看已开放的端口 firewall-cmd --list-ports 开放端口(开放后需要要重启防火墙才生效) firewall-cmd --zone=public --add-port=3338/tcp --permanent 重启防火墙 firewal ...
分类:
其他好文 时间:
2021-07-16 17:42:16
阅读次数:
0
论枚举的正确使用方式 import java.util.ArrayList; import java.util.Arrays; import java.util.List; /** * @Description 论枚举类的正确使用方式 * @Author 踏步 * @Date 2021/7/11 1 ...
分类:
其他好文 时间:
2021-07-12 18:12:42
阅读次数:
0
数据结构 Java 数据结构 List List 都有序; 线程不安全; 有长度; 内部持有 modCount 记录修改次数 ArrayList 默认长度为10、超出长度时进行扩容(0.5倍),最大长度 2 的 31 次方 -8, 超出会OOM; 特点: 查快删改慢 LinkedList 双向链表, ...
分类:
其他好文 时间:
2021-07-12 18:04:31
阅读次数:
0
文章目录 7.1 `List`容量初始化7.2 元素个数确定时推荐使用Tuple7.3 推荐使用局部变量引用频繁使用的外界对象7.4 尽量使用`generator comprehension`代替`listcomprehension`7.5 使用字符串格式化方式代替"+"和"+="操作符7.1 Li ...
分类:
编程语言 时间:
2021-07-12 17:58:09
阅读次数:
0
上一篇升级版,转换文件内容。 #!/user/bin env python # author:Simple-Sir # time:2021/7/9 23:32 def txt_2_list(filename): dic = {} dic_k = [] dic_v = [] with open(fil ...
分类:
编程语言 时间:
2021-07-09 17:54:52
阅读次数:
0